home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Borland
/
Borland C++ V5.02
/
DIALOG.PAK
/
MODAL.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-06
|
471b
|
14 lines
// Dialog box procedures must be exported in 16-bit applications for Windows.
#ifdef WIN16
LRESULT CALLBACK __export Modal(HWND, UINT, WPARAM, LPARAM);
#else
LRESULT CALLBACK Modal(HWND, UINT, WPARAM, LPARAM);
#endif
#define IDD_MODALDIALOG 100
#define IDD_STUDENTS 101
#define IDD_NAME 104
#define IDD_TITLE 106
#define IDD_PHONE 108
#define IDD_INCLUDEBOYS 109